home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Easy as pi dcmd ƒ / useful.make < prev    next >
Text File  |  2000-06-23  |  901b  |  33 lines

  1. #   File:       useful.make
  2. #
  3. #    useful dcmd (not!)
  4. #    Created at MacHack 2000 by Philippe Casgrain
  5. #    philippe@casgrain.com
  6. #
  7. #    This builds the dcmd and moves it to the MacsBug Preferences folder 
  8. #    in the System folder. You may have to localize the Preferences
  9. #    folder name on a non-US system.
  10. #
  11. #    Note that the link order is important. If you link something else first,
  12. #    it will barf in the BuildDcmd.
  13. #    This is set up for MPW 3.2, since the libraries moved.
  14.  
  15. useful.p.o ƒ useful.make useful.p
  16.      Pascal  useful.p
  17. dcmdGlue.a.o    ƒ    dcmdGlue.a
  18.     asm    -o dcmdGlue.a.o    dcmdGlue.a
  19.  
  20. SOURCES = useful.p
  21. OBJECTS = dcmdGlue.a.o useful.p.o
  22.  
  23. useful ƒ useful.make {OBJECTS}
  24.     Link -sg Main=PASLIB,%A5INIT  ∂
  25.         {OBJECTS} ∂
  26.         "{Libraries}"Runtime.o ∂
  27. #        "{Libraries}"Interface.o ∂
  28. #        "{PLibraries}"PasLib.o ∂
  29.         -o useful
  30.     BuildDcmd useful 33277
  31.     
  32.     move useful "{SystemFolder}Preferences:MacsBug Preferences:useful" -y
  33.